home *** CD-ROM | disk | FTP | other *** search
/ 220 Jogos / 220 jogos.iso / classicos / genius3 / TEXTURAS.H < prev   
Encoding:
C/C++ Source or Header  |  2002-08-21  |  416 b   |  19 lines

  1. #include <gl\glaux.h>        // Header File For The Glaux Library
  2.  
  3. typedef struct
  4. {
  5.     GLubyte    *imageData;                                            
  6.     GLuint    bpp;                                                
  7.     GLuint    ancho;                                                
  8.     GLuint    alto;                                                
  9.     GLuint    texID;                                                
  10. }TexturaTGA;    
  11.  
  12. typedef struct
  13. {
  14.     char *nombre;
  15.     TexturaTGA *text;
  16. }AUX;            
  17.  
  18. bool CargaTGA(TexturaTGA *textura, char *filename);
  19. bool Esta(char *nombre,AUX *auxText,int numtext,int t);